home *** CD-ROM | disk | FTP | other *** search
/ Giga Games 1 / Giga Games.iso / net / hack / 1 / include / func_tab.h < prev    next >
Encoding:
C/C++ Source or Header  |  1985-07-26  |  299 b   |  17 lines

  1. /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
  2. /* def.func_tab.h - version 1.0.2 */
  3.  
  4. struct func_tab {
  5.     char f_char;
  6.     int (*f_funct)();
  7. };
  8.  
  9. extern struct func_tab cmdlist[];
  10.  
  11. struct ext_func_tab {
  12.     char *ef_txt;
  13.     int (*ef_funct)();
  14. };
  15.  
  16. extern struct ext_func_tab extcmdlist[];
  17.